home *** CD-ROM | disk | FTP | other *** search
- part bell;
- bell synthPatch:"Fm1i" synthPatchCount:9;
-
- envelope ampFun = [(0,0)(.005,1)(6,0)|(14,0.0)(15,0)];
- envelope freqFun = [(0,1)(.005,1.06)(.01,1)(10,1)|(14,.9,2)];
- envelope indxFun = [(0,2)(.005,1)(10,0,.3)|(14,0.0)];
-
- waveTable wave1 = [{1,1}{3,.1}];
-
-
- BEGIN;
- bell (noteUpdate) waveform:wave1 m1Ratio:3.4
- m1Ind1:.4 amp:0.2 ampEnv:ampFun freqEnv:freqFun m1IndEnv:indxFun;
- /* We can put information which is reapplied to each new phrase
- in a noteUpdate with no tag. In this case, each note is a new 'phrase',
- since there is no note tag. The note itself may override the information. */
-
- t .001;
- bell (4.1) freq:d6 bearing:45;
- t .75;
- bell (4.1) freq:d6 bearing:45;
- t 1.5;
- bell (4.1) freq:d6 bearing:45;
- t 2.25;
- END;
-
-